home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / comm / mail / thor201.lha / THOR_2.0 / thor.lha / rexx / Quote.fse < prev    next >
Text File  |  1995-05-15  |  281b  |  21 lines

  1. /* qoute.fse - qoutes all except empty lines */
  2.  
  3. options results
  4. qoutechar = ">"
  5.  
  6. YPOS
  7. currline = result
  8. XPOS
  9. currcolumn = result
  10. MSGLENGTH
  11. lastline = result
  12.  
  13. do i=1 to lastline
  14.   SETPOS 1 i
  15.   GETLINE
  16.   if(result ~= " ") then INSERTINPUT qoutechar
  17. end
  18.  
  19. SETPOS currcolumn currline
  20.  
  21.